HiWwhat's the difference between Frameworks and Swift Packages, both create reusable code that we can use in another programs or I'm wrong ?
Post
Replies
Boosts
Views
Activity
Hihi if I have an Aap that supports Core Data & CloudKit, and the device we t offline, when it's back online data will sync automatically?
Hihi I'm developing a patient management system using Code Data App that supports CloudKit, I feel it's the best scena to use, my concern is if a user a doctor for example is editing a record while another staff delete this record, what's the design pattern here ? Locking the record ? Can that be done in Core Data CloudKit ?Another concern is, what if a record is deleted and because there's few seconds of delay in data sync another user might open that record or at least try to open it ? Or maybe he edited it when he was offline and then when going online that record was deleted ?There might be many other such cases but what I understand that new systems solves this issues in a better why ?--Kindest Regards
HiSuppose I want to create a log for records changes by users for security reason, does Core Data have something ready to yous or I need to make it manually ?--Kindest Regards
HiI really liked haw object library was docked in the inspector before is there a way to do it with Xcode 11 I really dont like the floating window --Kindest Regards
HiThis is a simple Core Data project I dont know why Im getting nil value error in line 46 in View Controller although everyting seems to be fine !--Kindest Regardsh ttps://www.dropbox.com/s/mummh4429nkhs3h/CoreDataApp.zip?dl=0
HiI choosed the plist file in my iOS project and made a new group from selection to organize my project better, but started getting the error below ? haw can this be solved ?--Kindest Regardserror: Build input file cannot be found: '/Users/AmmarSM/Downloads/CoreDataApp/CoreDataApp/Info.plist' (in target 'CoreDataApp' from project 'CoreDataApp')
HiI have a simple iOS App and I use iPhone 11 Simulator, but when trying to run activity template it says that this device is not supported ! is that the normal behavior for instrumetns ? Kindest Regards
Hithere are many areas in Xcode that have icons such as items in auto completion in code editor or the debugger at run time, where can I find a help document that describes there meanings--Kindest Regards
Hihi is there a frame work in Cocoa to export data from ata levied to Excel or Numbers ? and is there something similar exporting to pdf ?--Kindest Regards
HiWhen creating Core Data iOS project we get the below code, I find it strange to declare a variable then making it equal to a code ? or a result of a code without function calling ?--Kindest Regardsstatic var persistentContainer: NSPersistentContainer = {
let container = NSPersistentContainer(name: "CoreDataApp")
container.loadPersistentStores(completionHandler: { (storeDescription, error) in
if let error = error as NSError? {
store could not be migrated to the current model version.
Check the error message to determine what the actual problem was.
*/
fatalError("Unresolved error \(error), \(error.userInfo)")
}
})
return container
}()
HiI want to do something like Apple Mail App, at top a search bar and it can be hidden, when I place the search field and top of table view then add a table view cell it pushes it under it if I put it outside the table view it doesnt scroll, so whats the standatrd here ?--Kindest Regards
HiIf I have an image larger than the image view size, haw to instruct the image view to deal with it in different ways, such is to show part of it, or resize it and stretch it, or resize and keeong the aspect ratio ?--Kindest Regards
HiIm strugeling in fetching data from core data first it was the egenric thing Im not sure if its solved or not, aftering getting an array of managed objects Im struggeling feeding its data to table view cell, I think it suppose to be a simple task ?--Kindest Regardsh ttps://www.dropbox.com/s/vb3cet085v05tvi/Core%20Data%20Simple.zip?dl=0
HiI have the simple project in link below, just trying to insert a new managed object but its giving me en error ? either it cant see the entity or its class dont know why ?--Kindest Regardsh ttps://www.dropbox.com/s/t0z8i45d9ep84oz/Core%20Date%20New.zip?dl=0